soc: st: stm32u3: Add STM32U3C5 SoC entry#105473
Closed
filipembedded wants to merge 1 commit intozephyrproject-rtos:mainfrom
Closed
soc: st: stm32u3: Add STM32U3C5 SoC entry#105473filipembedded wants to merge 1 commit intozephyrproject-rtos:mainfrom
filipembedded wants to merge 1 commit intozephyrproject-rtos:mainfrom
Conversation
f9f5925 to
141cd8a
Compare
This was referenced Mar 14, 2026
141cd8a to
95dce9c
Compare
Member
|
Please update west.yaml to point to required version of hal_stm32 ( |
95dce9c to
d2d600e
Compare
|
The following west manifest projects have changed revision in this Pull Request:
⛔ DNM label due to: 1 project with PR revision Note: This message is automatically posted and updated by the Manifest GitHub Action. |
Contributor
Author
856bb0b to
965bb48
Compare
erwango
reviewed
Mar 17, 2026
| reg = <0x42021400 0x400>; | ||
| clocks = <&rcc STM32_CLOCK(AHB2, 5)>; | ||
| }; | ||
| }; |
Member
There was a problem hiding this comment.
Please do it as follows (ie move under soc node).
soc {
compatible = "st,stm32h5ef", "st,stm32h5", "simple-bus";
pinctrl: pin-controller@xxxxxxxxxx {
gpioh: gpio@42021c00 {
compatible = "st,stm32-gpio";
gpio-controller;
#gpio-cells = <2>;
reg = <0x42021c00 0x400>;
clocks = <&rcc STM32_CLOCK(AHB2, 7)>;
};
gpioj: gpio@42022400 {
compatible = "st,stm32-gpio";
gpio-controller;
#gpio-cells = <2>;
reg = <0x42022400 0x400>;
clocks = <&rcc STM32_CLOCK(AHB2, 9)>;
};
gpiok: gpio@42022800 {
compatible = "st,stm32-gpio";
gpio-controller;
#gpio-cells = <2>;
reg = <0x42022800 0x400>;
clocks = <&rcc STM32_CLOCK(AHB2, 26)>;
};
};
This is the same in the end, but preferred for consistency
Contributor
Author
There was a problem hiding this comment.
I understand. Done
Add STM32U3C5 SoC entry to STM32U3 series. Signed-off-by: Filip Stojanovic <filipembedded@gmail.com>
965bb48 to
c51abf4
Compare
Contributor
Author
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This PR adds STM32U3C5 SoC entry to STM32U3 series.
This PR is blocked by: This PR